home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / netclb23.zip / CONNECT.H < prev    next >
C/C++ Source or Header  |  1994-05-20  |  1KB  |  27 lines

  1. #ifndef CONNECT_H
  2. #define CONNECT_H
  3.  
  4. /**********************************/
  5. /* Connection Services prototypes */
  6. /**********************************/
  7.  
  8. int AttachToFileServer(char *serverName);
  9. int DetachFromFileServer(char *serverName);
  10. int EnterLoginArea(int numberOfLocalDrives,char *loginDirectoryName);
  11. int GetConnectionInformation(word connectNo,char *objectName,
  12.      word *objectType,long *objectID,byte *loginTime);
  13. int GetConnectionNumber(void);
  14. int GetInternetAddress(int conn_no,byte *networkNumber,
  15.                        byte *nodeAddress,word *socketNumber);
  16. int GetObjectConnectionNumbers(word objType,char *objName,
  17.      word *connectionCount,byte *connections);
  18. void GetStationAddress(byte *physicalNodeAddress);
  19. int LoginObjectEncrypted(word objectType,char *objectName,
  20.                          byte *encryptedPassword);
  21. int LoginToFileServer(word objectType,char *objectName,
  22.      char *objectPassword);
  23. void LogoutFromFileServer(char *serverName);
  24. void Logout(void);
  25.  
  26. #endif
  27.